home *** CD-ROM | disk | FTP | other *** search
/ User's Choice Windows CD / User's Choice Windows CD (CMS Software)(1993).iso / wingames / caspakwn.zip / PCMANIA.ZIP / PCMANIA.BAT next >
DOS Batch File  |  1991-12-09  |  1KB  |  56 lines

  1. echo off
  2. :START
  3.   cls
  4.   echo  
  5.   echo  
  6.   echo ┌─────────────────────────────────┐
  7.   echo │        The PC Mania BBS         │
  8.   echo │     Registration Procedures     │
  9.   echo └─────────────────────────────────┘
  10.   echo  
  11.   echo  
  12.   echo F1 - View the Registration Form.
  13.   echo F2 - Print the Registration Form.
  14.   echo F3 - Exit batch file.
  15.   echo  
  16.   echo Your Selection?
  17.   reply
  18.   if errorlevel 62 goto START
  19.   if errorlevel 61 goto END
  20.   if errorlevel 60 goto PRINT_REGISTRATION
  21.   if errorlevel 59 goto VIEW_REGISTRATION
  22.   goto START
  23. :VIEW_REGISTRATION
  24.   cls
  25.   type pcmania.reg | more
  26.   pause
  27.   goto START
  28. :PRINT_REGISTRATION
  29.   cls
  30.   echo  
  31.   echo  
  32.   echo  
  33.   echo ┌─────────────────────────────────────────────────────────┐
  34.   echo │  The Registration Form is about to be Printed.  Please  │
  35.   echo │  ensure that your printer is ONLINE and READY ??        │
  36.   echo └─────────────────────────────────────────────────────────┘
  37.   echo  
  38.   echo Press CTRL-C to Cancel.
  39.   echo  
  40.   pause
  41.   type pcmania.reg >> PRN
  42.   goto START
  43. :END
  44.   cls
  45.   echo  
  46.   echo  
  47.   echo ┌───────────────────────────────────────────┐
  48.   echo │  Thank you for choosing The PC Mania BBS  │
  49.   echo │         Your Windows 3.0 Connection       │
  50.   echo ├───────────────────────────────────────────┤
  51.   echo │ Data (703)330-0761  2400/N81 Manassas, VA │
  52.   echo └───────────────────────────────────────────┘
  53.   echo  
  54.   echo Have a Nice Day...
  55.   echo  
  56.